home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsstate.h < prev    next >
C/C++ Source or Header  |  1997-04-24  |  3KB  |  75 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsstate.h */
  20. /* Public graphics state API */
  21.  
  22. #ifndef gsstate_INCLUDED
  23. #  define gsstate_INCLUDED
  24.  
  25. /* Opaque type for a graphics state */
  26. #ifndef gs_state_DEFINED
  27. #  define gs_state_DEFINED
  28. typedef struct gs_state_s gs_state;
  29. #endif
  30.  
  31. /* Initial allocation and freeing */
  32. gs_state *gs_state_alloc(P1(gs_memory_t *)); /* 0 if fails */
  33. int gs_state_free(P1(gs_state *));
  34.  
  35. /* Initialization, saving, restoring, and copying */
  36. int    gs_gsave(P1(gs_state *)),
  37.     gs_grestore(P1(gs_state *)),
  38.     gs_grestoreall(P1(gs_state *));
  39. gs_state *gs_gstate(P1(gs_state *));
  40. gs_state *gs_state_copy(P2(gs_state *, gs_memory_t *));
  41. int    gs_copygstate(P2(gs_state * /*to*/, const gs_state * /*from*/)),
  42.     gs_currentgstate(P2(gs_state * /*to*/, const gs_state * /*from*/)),
  43.     gs_setgstate(P2(gs_state * /*to*/, const gs_state * /*from*/));
  44. int    gs_initgraphics(P1(gs_state *));
  45.  
  46. /* Device control */
  47. #include "gsdevice.h"
  48.  
  49. /* Line parameters and quality */
  50. #include "gsline.h"
  51.  
  52. /* Color and gray */
  53. #include "gscolor.h"
  54.  
  55. /* Halftone screen */
  56. #include "gsht.h"
  57. #include "gscsel.h"
  58. int    gs_setscreenphase(P4(gs_state *, int, int, gs_color_select_t));
  59. int    gs_currentscreenphase(P3(const gs_state *, gs_int_point *,
  60.                  gs_color_select_t));
  61. #define gs_sethalftonephase(pgs, px, py)\
  62.   gs_setscreenphase(pgs, px, py, gs_color_select_all)
  63. #define gs_currenthalftonephase(pgs, ppt)\
  64.   gs_currentscreenphase(pgs, ppt, 0)
  65. int    gx_imager_setscreenphase(P4(gs_imager_state *, int, int,
  66.                     gs_color_select_t));
  67.  
  68. /* Miscellaneous */
  69. int    gs_setfilladjust(P3(gs_state *, floatp, floatp));
  70. int    gs_currentfilladjust(P2(const gs_state *, gs_point *));
  71. void    gs_setlimitclamp(P2(gs_state *, bool));
  72. bool    gs_currentlimitclamp(P1(const gs_state *));
  73.  
  74. #endif                    /* gsstate_INCLUDED */
  75.